home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD Ware Multimedia 1995 May
/
cd Ware (Juegos) Epimundo.iso
/
DOS
/
C
/
TCCLIB.ZIP
/
ACCEPT.C
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1989-07-29
|
235 b
|
12 lines
int GetLine( char *s, int len, int start );
void Say( char *s );
#include <conio.h>
void Accept( int x, int y, char *Prompt, char *Buffer, int Length )
{
gotoxy( x, y );
Say( Prompt );
GetLine( Buffer, Length, 0 );
}